added some development tools
[windows-sources.git] / developer / Samples / NET 4.6 / Samples for Parallel / NBodySimulation / NBodySimulationBackend / SI.fs
blob65590c9f15a69a740cbb0d9e74fd9a6d159b00ce
1 //--------------------------------------------------------------------------
2 //
3 // Copyright (c) Microsoft Corporation. All rights reserved.
4 //
5 // File: SI.fs
6 //
7 //--------------------------------------------------------------------------
9 namespace Microsoft.FSharp.Math
11 // System Internationale. See http://www.bipm.org/en/si/si_brochure/general.html
12 /// The International System of Units (SI)
13 [<CompilationRepresentation(CompilationRepresentationFlags.ModuleSuffix)>]
14 module SI =
16 [<Measure>]
17 /// metre (or meter), SI unit of length
18 type m
20 [<Measure>]
21 /// kilogram, SI unit of mass
22 type kg
24 [<Measure>]
25 /// second, SI unit of time
26 type s
28 [<Measure>]
29 /// ampere, SI unit of electric current
30 type A
32 [<Measure>]
33 /// kelvin, SI unit of thermodynamic temperature
34 type K
36 [<Measure>]
37 /// mole, SI unit of amount of substance
38 type mol
40 [<Measure>]
41 /// candela, SI unit of luminous intensity
42 type cd
44 [<Measure>]
45 /// hertz, SI unit of frequency
46 type Hz = s^-1
48 [<Measure>]
49 /// newton, SI unit of force
50 type N = kg m / s^2
52 [<Measure>]
53 /// pascal, SI unit of pressure, stress
54 type Pa = N / m^2
56 [<Measure>]
57 /// joule, SI unit of energy, work, amount of heat
58 type J = N m
60 [<Measure>]
61 /// watt, SI unit of power, radiant flux
62 type W = J / s
64 [<Measure>]
65 /// coulomb, SI unit of electric charge, amount of electricity
66 type C = s A
68 [<Measure>]
69 /// volt, SI unit of electric potential difference, electromotive force
70 type V = W/A
72 [<Measure>]
73 /// farad, SI unit of capacitance
74 type F = C/V
76 [<Measure>]
77 /// ohm, SI unit of electric resistance
78 type ohm = V/A
80 [<Measure>]
81 /// siemens, SI unit of electric conductance
82 type S = A/V
84 [<Measure>]
85 /// weber, SI unit of magnetic flux
86 type Wb = V s
88 [<Measure>]
89 /// tesla, SI unit of magnetic flux density
90 type T = Wb/m^2
92 [<Measure>]
93 /// henry, SI unit of inductance
94 type H = Wb/A
96 [<Measure>]
97 /// lumen, SI unit of luminous flux
98 type lm = cd
100 [<Measure>]
101 /// lux, SI unit of illuminance
102 type lx = lm/m^2
104 [<Measure>]
105 /// becquerel, SI unit of activity referred to a radionuclide
106 type Bq = s^-1
108 [<Measure>]
109 /// gray, SI unit of absorbed dose
110 type Gy = J/kg
112 [<Measure>]
113 /// sievert, SI unit of does equivalent
114 type Sv = J/kg
116 [<Measure>]
117 /// katal, SI unit of catalytic activity
118 type kat = mol/s